home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / fs / msdos / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-05  |  576 b   |  26 lines

  1. #
  2. # Makefile for the 680x0 linux MS-DOS-filesystem routines.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definitions are now in the main makefile...
  9.  
  10. include ../../MakeVars
  11.  
  12. OBJS=    namei.o inode.o file.o dir.o misc.o fat.o
  13.  
  14. msdos.o: $(OBJS)
  15.     $(LD) -r -o msdos.o $(OBJS)
  16.  
  17. dep:
  18.     $(CPP) -M *.c > .depend
  19.  
  20. #
  21. # include a dependency file if one exists
  22. #
  23. ifeq (.depend,$(wildcard .depend))
  24. include .depend
  25. endif
  26.